summaryrefslogtreecommitdiff
path: root/src/interfacegats.h
blob: ff1f7600cddb19f4a5020f4d4de4646fcfebfcc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef INTERFACE_GATS_H
#define INETRFACE_GATS_H

#include "interface.h"

class InterfaceGats : public Interface
{
public:
	InterfaceGats();
	virtual ~InterfaceGats();

	virtual void run( class Game *pGame );

	virtual void display( const class SmlNode *pSml );
};

#endif